home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / mac / MACF / MGER.DIR / 00234_Script_234 < prev    next >
Text File  |  1995-10-10  |  488b  |  25 lines

  1. on mouseUp
  2.   global prev,gSound
  3.   
  4.   if (prev >0 ) then
  5.     set prev = 0
  6.     set the visible of sprite 19 to FALSE
  7.     updateStage
  8.     repeat with x = 13 to 18
  9.       set the visible of sprite x to TRUE
  10.     end repeat
  11.     repeat with i=13 to 18
  12.       puppetsprite i,0
  13.     end repeat
  14.     set the SoundLevel = gSound
  15.     puppetSound "OPEN.AIF"
  16.     updateStage
  17.     go 55
  18.   else
  19.     repeat with i=13 to 18
  20.       puppetsprite i,0
  21.     end repeat
  22.     go 55
  23.   end if
  24.   
  25. end